home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / vimvcl30.zip / DEMO1S1.PAS < prev    next >
Pascal/Delphi Source File  |  1996-02-02  |  509b  |  33 lines

  1. unit Demo1s1;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TerrorDlg = class(TForm)
  10.     OKBtn: TBitBtn;
  11.     Bevel1: TBevel;
  12.     errorMessage: TEdit;
  13.     extendedError: TEdit;
  14.     Label1: TLabel;
  15.     Label2: TLabel;
  16.     Label3: TLabel;
  17.     applicationError: TEdit;
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   errorDlg: TerrorDlg;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31.  
  32. end.
  33.